home *** CD-ROM | disk | FTP | other *** search
- #ifndef SUP_LIB_H
- #define SUP_LIB_H
- /*
- ** WBGenie is Copyright 1992 by Steven Velletri. All Rights Reserved
- **
- ** Filename: sup_lib.h
- ** Release: 1.0
- ** Revision: 0.0
- ** Date: 23/07/92
- **
- ** Purpose:
- ** Display handling prototypes and macros.
- */
-
- struct SUPTOOLTYPES
- {
- char *tt_name; /* the tool type name */
- BOOL flag1; /* private, set it to zero */
- };
-
- #define SUPTOOLTYPESIZE(X) sizeof(X)/sizeof(struct SUPTOOLTYPES)
-
- void sup_free_tool_type_array(char **tool_types);
- char ** sup_create_tool_type_array(char **old_tool_types,
- char **new_tool_types,
- struct SUPTOOLTYPES *def_tool_types, int num_new_tt);
-
- #endif /* SUP_LIB_H */
-